1 책표지

Canva와 같은 이미지 제작 웹사이트에서 책이나 보고서 첫페이지에 사용될 이미지를 제작한다. 제작한 파일을 pdf 파일로 저장한다.

2 책표지 이미지

titlepic 팩키지를 동원해서 책제목과 함께 이미지를 함께 넣어 PDF 문서를 제작할 수 있다. titlepage를 별도로 빼서 나름 모듈화 시킨다.

\documentclass[a4paper]{article}
\usepackage{kotex}
\usepackage{jiwonlipsum}

% 첫장
\usepackage{titlepic}
\usepackage{graphicx}

\title{데이터 과학 입문}
\author{이광춘}
\date{\today}
\titlepic{\includegraphics[width=7cm]{cover.png}}
%\titlepic{\includegraphics[width=\textwidth/2]{cover.png}}

\begin{document}
    
    \begin{titlepage}
        \maketitle
    \end{titlepage}

    \section{들어가며}
    \jiwon
    
\end{document}

knitr::include_graphics("lipsum/cover/cover-image.pdf")
 

데이터 과학자 이광춘 저작

kwangchun.lee.7@gmail.com